home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / WLIST.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-03  |  433 b   |  27 lines

  1. #ifndef  BOGLIST_H
  2. #define  BOGLIST_H
  3.  
  4. #include  "bogwin.hpp"
  5.  
  6. //
  7. //  Boggle WList class
  8. //
  9.  
  10. class TBogWordList;
  11.  
  12. class TBogWordList : public IListBox
  13. {
  14.    private:
  15.      char sWIPString[WORDLENGTH]; 
  16.  
  17.    public :
  18.       TBogWordList (unsigned long id, IWindow* parent);
  19.       void selectWord(int index);
  20.       void addString(char *sString);
  21.       void clearList();
  22.       void selectAllWords();
  23. } ;
  24.  
  25. #endif
  26.  
  27.